updating snapshot scripts to support bitrig
authorDave Huseby <dhuseby@mozilla.com>
Tue, 19 May 2015 22:36:13 +0000 (15:36 -0700)
committerDave Huseby <dhuseby@mozilla.com>
Tue, 19 May 2015 22:36:13 +0000 (15:36 -0700)
src/etc/dl-snapshot.py
src/etc/print-new-snapshot.py

index c26297471663ab01a193f6cb0538d17cb549de59..0adc5716fdea55762eeb54f2756b2ab8645ee97f 100644 (file)
@@ -52,6 +52,9 @@ elif target_os == 'windows':
     elif arch == 'x86_64':
         me = win64
         new_triple = 'x86_64-pc-windows-gnu'
+elif target_os == 'bitrig':
+    me = bitrig64
+    new_triple = 'x86_64-unknown-bitrig'
 
 if me is None:
     raise Exception("no snapshot for the triple: " + triple)
index 0c5e52a3245fb97491e9ae66c33df67ee14fb675..bbb10656324acad462241dee0870e44167e269bd 100644 (file)
@@ -18,6 +18,7 @@ snaps = {
     'linux-x86_64': 'x86_64-unknown-linux-gnu',
     'winnt-i386': 'i686-pc-windows-gnu',
     'winnt-x86_64': 'x86_64-pc-windows-gnu',
+    'bitrig-x86_64': 'x86_64-unknown-bitrig',
 }
 
 for platform in sorted(snaps):